/* add more */
GTK_CSS_CHANGE_SOURCE = (1 << 16),
GTK_CSS_CHANGE_ANIMATE = (1 << 17),
- GTK_CSS_CHANGE_FORCE_INVALIDATE = (1 << 18),
GTK_CSS_CHANGE_RESERVED_BIT = (1 << 31) /* Used internally in gtkcssselector.c */
} GtkCssChange;
_gtk_bitmask_free (animation_changes);
}
- if (change & GTK_CSS_CHANGE_FORCE_INVALIDATE)
- {
- GtkBitmask *full = _gtk_bitmask_new ();
- full = _gtk_bitmask_invert_range (full,
- 0,
- _gtk_css_style_property_get_n_properties ());
- gtk_style_context_do_invalidate (context, full);
- _gtk_bitmask_free (full);
- }
- else if (!_gtk_bitmask_is_empty (changes))
- {
- gtk_style_context_do_invalidate (context, changes);
- }
+ if (!_gtk_bitmask_is_empty (changes))
+ gtk_style_context_do_invalidate (context, changes);
change = _gtk_css_change_for_child (change);
for (list = priv->children; list; list = list->next)